Keysight Pathwave 89600 VSA .NET API
SendData(Single[]) Method
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > UserInputDataChannel Class > SendData Method : SendData(Single[]) Method


dataSamples
Time series data block to be consumed by attached Measurement. If UserInputSetup.IsComplexData is true, complex data is expected, and presented in this parameter as alternating real and imaginary values.

Glossary Item Box

Send data to be processed.

Syntax

Visual Basic (Declaration) 
Public Overloads MustOverride Sub SendData( _
   ByVal dataSamples() As Single _
) 
C# 
public abstract void SendData( 
   float[] dataSamples
)
C++/CLI 
public:
abstract void SendData( 
   array<float>^ dataSamples
) 

Parameters

dataSamples
Time series data block to be consumed by attached Measurement. If UserInputSetup.IsComplexData is true, complex data is expected, and presented in this parameter as alternating real and imaginary values.

Remarks

Send data for this channel into first-in-first-out (FIFO) buffer to be consumed by attached Measurement. Data can be sent for a multiple channels using SendData(IEnumerable<Single[]>) or UserInputData.SendData.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also